home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / prtrep51.zip / REPCP_32.ZIP / REPORTIT.PAS < prev    next >
Pascal/Delphi Source File  |  1996-06-23  |  544b  |  47 lines

  1. {
  2.   Reportit - Report Components - Report and File Printing
  3.  
  4.   Copyright (c), 1996, Calitz Bros.   All rights reserved
  5. }
  6.  
  7. unit Reportit;
  8.  
  9.  
  10. interface
  11.  
  12. uses
  13.   Classes,
  14.   DsgnIntf,
  15.   Dialogs,
  16.   SysUtils,
  17.  
  18.   PrnGridR,
  19.   Prnfile,
  20.   PrMemo,
  21.  
  22.   Gdi,
  23.   Funcs,
  24.   FuncsDb,
  25.   CB_Types,
  26.   FileRead,
  27.   PrintWiz,
  28.   Regist,
  29.   InfPower,
  30.   AddIt;
  31.  
  32.  
  33. procedure Register;
  34.  
  35. implementation
  36.  
  37.  
  38.   procedure Register;
  39.  
  40.   begin
  41.     RegisterComponents('Reportit',[TPrintGridReport,TPrintFile,
  42.     TPrintMemo]);
  43.   end;
  44.  
  45.  
  46. end.
  47.